|
|
@@ -971,6 +971,7 @@ class MemberActivityContributionInfo(BaseModelMixin, BrandInfoMixin):
|
971
|
971
|
|
972
|
972
|
@property
|
973
|
973
|
def data(self):
|
|
974
|
+ act = MemberActivityInfo.objects.get(activity_id=self.activity_id, status=True)
|
974
|
975
|
return {
|
975
|
976
|
'contribution_id': self.contribution_id,
|
976
|
977
|
'brand_id': self.brand_id,
|
|
|
@@ -978,6 +979,7 @@ class MemberActivityContributionInfo(BaseModelMixin, BrandInfoMixin):
|
978
|
979
|
'user_id': self.user_id,
|
979
|
980
|
'activity_id': self.activity_id,
|
980
|
981
|
'main_activity_id': self.main_activity_id,
|
|
982
|
+ 'activity_title': act.title,
|
981
|
983
|
'content_type': self.content_type,
|
982
|
984
|
'title': self.title,
|
983
|
985
|
'content': self.content,
|